home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / comic-logo.scm < prev    next >
Text File  |  2009-12-15  |  7KB  |  171 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; This program is free software; you can redistribute it and/or modify
  5. ; it under the terms of the GNU General Public License as published by
  6. ; the Free Software Foundation; either version 2 of the License, or
  7. ; (at your option) any later version.
  8. ;
  9. ; This program is distributed in the hope that it will be useful,
  10. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ; GNU General Public License for more details.
  13. ;
  14. ; You should have received a copy of the GNU General Public License
  15. ; along with this program; if not, write to the Free Software
  16. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. ;
  18. ;  Comic Book Logo v0.1  04/08/98
  19. ;  by Brian McFee
  20. ;  Creates snazzy-looking text, inspired by watching a Maxx marathon :)
  21.  
  22. (define (apply-comic-logo-effect img
  23.                                  logo-layer
  24.                                  gradient
  25.                                  gradient-reverse
  26.                                  ol-width
  27.                                  ol-color
  28.                                  bg-color)
  29.   (let* (
  30.         (width (car (gimp-drawable-width logo-layer)))
  31.         (height (car (gimp-drawable-height logo-layer)))
  32.         (posx (- (car (gimp-drawable-offsets logo-layer))))
  33.         (posy (- (cadr (gimp-drawable-offsets logo-layer))))
  34.         (bg-layer (car (gimp-layer-new img width height RGBA-IMAGE
  35.                                        "Background" 100 NORMAL-MODE)))
  36.         (white-layer (car (gimp-layer-copy logo-layer 1)))
  37.         (black-layer (car (gimp-layer-copy logo-layer 1)))
  38.         )
  39.  
  40.     (gimp-context-push)
  41.  
  42.     (script-fu-util-image-resize-from-layer img logo-layer)
  43.     (script-fu-util-image-add-layers img black-layer white-layer bg-layer)
  44.     (gimp-layer-translate white-layer posx posy)
  45.     (gimp-drawable-set-name white-layer "White")
  46.     (gimp-layer-translate black-layer posx posy)
  47.     (gimp-drawable-set-name black-layer "Black")
  48.  
  49.     (gimp-selection-all img)
  50.     (gimp-context-set-background bg-color)
  51.     (gimp-edit-fill bg-layer BACKGROUND-FILL)
  52.     (gimp-selection-none img)
  53.  
  54.     (gimp-layer-set-lock-alpha white-layer TRUE)
  55.     (gimp-context-set-background ol-color)
  56.     (gimp-selection-all img)
  57.     (gimp-edit-fill white-layer BACKGROUND-FILL)
  58.     (gimp-layer-set-lock-alpha white-layer FALSE)
  59.     (plug-in-spread RUN-NONINTERACTIVE img white-layer (* 3 ol-width) (* 3 ol-width))
  60.     (plug-in-gauss-rle RUN-NONINTERACTIVE img white-layer (* 2 ol-width) 1 1)
  61.     (plug-in-threshold-alpha RUN-NONINTERACTIVE img white-layer 0)
  62.     (gimp-layer-set-lock-alpha white-layer TRUE)
  63.     (gimp-edit-fill white-layer BACKGROUND-FILL)
  64.     (gimp-selection-none img)
  65.  
  66.     (gimp-context-set-background '(0 0 0))
  67.     (gimp-layer-set-lock-alpha black-layer TRUE)
  68.     (gimp-selection-all img)
  69.     (gimp-edit-fill black-layer BACKGROUND-FILL)
  70.     (gimp-selection-none img)
  71.     (gimp-layer-set-lock-alpha black-layer FALSE)
  72.     (plug-in-gauss-rle RUN-NONINTERACTIVE img black-layer ol-width 1 1)
  73.     (plug-in-threshold-alpha RUN-NONINTERACTIVE img black-layer 0)
  74.  
  75.     (gimp-context-set-gradient gradient)
  76.     (gimp-layer-set-lock-alpha logo-layer TRUE)
  77.     (gimp-selection-all img)
  78.  
  79.     (gimp-edit-blend logo-layer CUSTOM-MODE NORMAL-MODE
  80.                      GRADIENT-LINEAR 100 0 REPEAT-NONE gradient-reverse
  81.                      FALSE 0 0 TRUE
  82.                      0 (* height 0.3) 0 (* height 0.78))
  83.  
  84.     (plug-in-noisify RUN-NONINTERACTIVE img logo-layer 0 0.20 0.20 0.20 0.20)
  85.     (gimp-selection-none img)
  86.     (gimp-layer-set-lock-alpha logo-layer FALSE)
  87.     (gimp-brightness-contrast logo-layer 0 30)
  88.     (plug-in-threshold-alpha RUN-NONINTERACTIVE img logo-layer 60)
  89.     (gimp-image-set-active-layer img logo-layer)
  90.  
  91.     (gimp-context-pop)
  92.   )
  93. )
  94.  
  95. (define (script-fu-comic-logo-alpha img
  96.                                     logo-layer
  97.                                     gradient
  98.                                     gradient-reverse
  99.                                     ol-width
  100.                                     ol-color
  101.                                     bg-color)
  102.   (begin
  103.     (gimp-image-undo-group-start img)
  104.     (apply-comic-logo-effect img logo-layer
  105.                              gradient gradient-reverse
  106.                              ol-width ol-color bg-color)
  107.     (gimp-image-undo-group-end img)
  108.     (gimp-displays-flush)
  109.   )
  110. )
  111.  
  112. (script-fu-register "script-fu-comic-logo-alpha"
  113.   _"Comic Boo_k..."
  114.   _"Add a comic-book effect to the selected region (or alpha) by outlining and filling with a gradient"
  115.   "Brian McFee <keebler@wco.com>"
  116.   "Brian McFee"
  117.   "April 1998"
  118.   "RGBA"
  119.   SF-IMAGE      "Image"             0
  120.   SF-DRAWABLE   "Drawable"          0
  121.   SF-GRADIENT   _"Gradient"         "Incandescent"
  122.   SF-TOGGLE     _"Gradient reverse" FALSE
  123.   SF-ADJUSTMENT _"Outline size"     '(5 1 100 1 10 0 1)
  124.   SF-COLOR      _"Outline color"    "white"
  125.   SF-COLOR      _"Background color" "white"
  126. )
  127.  
  128. (script-fu-menu-register "script-fu-comic-logo-alpha"
  129.                          "<Image>/Filters/Alpha to Logo")
  130.  
  131.  
  132. (define (script-fu-comic-logo text
  133.                               size
  134.                               font
  135.                               gradient
  136.                               gradient-reverse
  137.                               ol-width
  138.                               ol-color
  139.                               bg-color)
  140.   (let* ((img (car (gimp-image-new 256 256 RGB)))
  141.          (border (/ size 4))
  142.          (text-layer (car (gimp-text-fontname
  143.                            img -1 0 0 text border TRUE size PIXELS font))))
  144.     (gimp-image-undo-disable img)
  145.     (apply-comic-logo-effect img text-layer gradient gradient-reverse
  146.                              ol-width ol-color bg-color)
  147.     (gimp-image-undo-enable img)
  148.     (gimp-display-new img)
  149.   )
  150. )
  151.  
  152. (script-fu-register "script-fu-comic-logo"
  153.   _"Comic Boo_k..."
  154.   _"Create a comic-book style logo by outlining and filling with a gradient"
  155.   "Brian McFee <keebler@wco.com>"
  156.   "Brian McFee"
  157.   "April 1998"
  158.   ""
  159.   SF-STRING     _"Text"               "Moo"
  160.   SF-ADJUSTMENT _"Font size (pixels)" '(85 2 1000 1 10 0 1)
  161.   SF-FONT       _"Font"               "Tribeca"
  162.   SF-GRADIENT   _"Gradient"           "Incandescent"
  163.   SF-TOGGLE     _"Gradient reverse"   FALSE
  164.   SF-ADJUSTMENT _"Outline size"       '(5 1 100 1 10 0 1)
  165.   SF-COLOR      _"Outline color"      "white"
  166.   SF-COLOR      _"Background color"   "white"
  167. )
  168.  
  169. (script-fu-menu-register "script-fu-comic-logo"
  170.                          "<Image>/File/Create/Logos")
  171.